crypto/tls.clientHandshakeStateTLS13.hello (field)

25 uses

	crypto/tls (current package)
		handshake_client.go#L211: 			hello:       hello,
		handshake_client_tls13.go#L23: 	hello       *clientHelloMsg
		handshake_client_tls13.go#L52: 	if hs.ecdheParams == nil || len(hs.hello.keyShares) != 1 {
		handshake_client_tls13.go#L61: 	hs.transcript.Write(hs.hello.marshal())
		handshake_client_tls13.go#L138: 	if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
		handshake_client_tls13.go#L148: 	selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
		handshake_client_tls13.go#L198: 		hs.hello.cookie = hs.serverHello.cookie
		handshake_client_tls13.go#L211: 		for _, id := range hs.hello.supportedCurves {
		handshake_client_tls13.go#L235: 		hs.hello.keyShares = []keyShare{{group: curveID, data: params.PublicKey()}}
		handshake_client_tls13.go#L238: 	hs.hello.raw = nil
		handshake_client_tls13.go#L239: 	if len(hs.hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L247: 			hs.hello.pskIdentities[0].obfuscatedTicketAge = ticketAge + hs.session.ageAdd
		handshake_client_tls13.go#L253: 			transcript.Write(hs.hello.marshalWithoutBinders())
		handshake_client_tls13.go#L255: 			hs.hello.updateBinders(pskBinders)
		handshake_client_tls13.go#L258: 			hs.hello.pskIdentities = nil
		handshake_client_tls13.go#L259: 			hs.hello.pskBinders = nil
		handshake_client_tls13.go#L263: 	hs.transcript.Write(hs.hello.marshal())
		handshake_client_tls13.go#L264: 	if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
		handshake_client_tls13.go#L318: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L323: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_client_tls13.go#L367: 	err := c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
		handshake_client_tls13.go#L372: 	err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
		handshake_client_tls13.go#L399: 	if err := checkALPN(hs.hello.alpnProtocols, encryptedExtensions.alpnProtocol); err != nil {
		handshake_client_tls13.go#L527: 	err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
		handshake_client_tls13.go#L532: 	err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)